/* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ useIlluminate\Support\Facades\View;
Route::get('/', function () { returnview('welcome'); });
Route::get('/url/{name}', function ($name) { echourl()->current(); });
/* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ use Illuminate\Support\Facades\View;
Route::get('/', function () { return view('welcome'); });
Route::get('/url/{name}', function ($name) { echo url()->previous(); });
/* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ useIlluminate\Support\Facades\URL;
Route::get('/', function () { returnview('welcome'); });